home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / bin / setdjgpp.bat < prev    next >
Encoding:
DOS Batch File  |  1994-07-16  |  445 b   |  23 lines

  1. @echo off
  2.  
  3. if "%2" == "" goto error
  4.  
  5. rem Everything else is set in djgpp.env now.
  6. set DJGPP=%2/djgpp.env
  7. set GO32TMP=%2/tmp
  8.  
  9. rem  Don't forget to change your PATH!
  10.  
  11. goto exit
  12.  
  13. :error
  14. echo.
  15. echo You must call this with DJGPP's installation directory passed
  16. echo twice, first with DOS-style slashes, then with Unix-style
  17. echo slashes.  Example:
  18. echo.
  19. echo   c:\stuff\djgpp\setdjgpp c:\stuff\djgpp c:/stuff/djgpp
  20. echo.
  21.  
  22. :exit
  23.